local didpingu = false local ScreenGui = Instance.new("ScreenGui",owner.PlayerGui) ScreenGui.Name = "nooties" local asd = Instance.new("TextButton",ScreenGui) asd.BackgroundColor3 = Color3.new(0,0,0) asd.BorderColor3 = Color3.new(0,0,0) asd.Name = "nooties" asd.Position = UDim2.new(1,-150,1,-90) asd.Size = UDim2.new(0,150,0,45) asd.Font = "SourceSansBold" asd.FontSize = "Size32" asd.Text = "Noot Noot!" asd.TextColor3 = Color3.new(255,255,255) asd.MouseButton1Down:connect(function() if didpingu == false then local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://1847105373" -- replace with the ID of the sound you want to use sound.Parent = script sound.Looped = true sound.Volume = 10 sound:Play() wait(12.5) local Sky = Instance.new("Sky",game.Lighting) Sky.SkyboxBk = "http://www.roblox.com/asset/?id=382332426" Sky.SkyboxDn = "http://www.roblox.com/asset/?id=382332426" Sky.SkyboxFt = "http://www.roblox.com/asset/?id=382332426" Sky.SkyboxLf = "http://www.roblox.com/asset/?id=382332426" Sky.SkyboxRt = "http://www.roblox.com/asset/?id=382332426" Sky.SkyboxUp = "http://www.roblox.com/asset/?id=382332426" local function modelasd() for i,v in pairs(workspace:GetChildren()) do if v:IsA("Model") then for i,a in pairs(v:GetChildren()) do local top = Instance.new("Decal",a) top.Face = "Top" top.Texture = "http://www.roblox.com/asset/?id=382332426" local btm = Instance.new("Decal",a) btm.Face = "Bottom" btm.Texture = "http://www.roblox.com/asset/?id=382332426" local lft = Instance.new("Decal",a) lft.Face = "Left" lft.Texture = "http://www.roblox.com/asset/?id=382332426" local rft = Instance.new("Decal",a) rft.Face = "Right" rft.Texture = "http://www.roblox.com/asset/?id=382332426" local frnt = Instance.new("Decal",a) frnt.Face = "Front" frnt.Texture = "http://www.roblox.com/asset/?id=382332426" local bk = Instance.new("Decal",a) bk.Face = "Back" bk.Texture = "http://www.roblox.com/asset/?id=382332426" local VTest = Instance.new("ParticleEmitter") VTest.Parent = a VTest.Texture = "http://www.roblox.com/asset/?id=382332426" VTest.Speed = NumberRange.new(200) VTest.Rate = 200 VTest.Size = NumberSequence.new(10000,10000) VTest.Lifetime = NumberRange.new(1000) local pepe = coroutine.create(function() local Explosion = Instance.new("Explosion",a) Explosion.BlastRadius = 10000 wait(1) end) coroutine.resume(pepe) end end end end local function partasd() for i,a in pairs(workspace:GetChildren()) do local top = Instance.new("Decal",a) top.Face = "Top" top.Texture = "http://www.roblox.com/asset/?id=382332426" local btm = Instance.new("Decal",a) btm.Face = "Bottom" btm.Texture = "http://www.roblox.com/asset/?id=382332426" local lft = Instance.new("Decal",a) lft.Face = "Left" lft.Texture = "http://www.roblox.com/asset/?id=382332426" local rft = Instance.new("Decal",a) rft.Face = "Right" rft.Texture = "http://www.roblox.com/asset/?id=382332426" local frnt = Instance.new("Decal",a) frnt.Face = "Front" frnt.Texture = "http://www.roblox.com/asset/?id=382332426" local bk = Instance.new("Decal",a) bk.Face = "Back" bk.Texture = "http://www.roblox.com/asset/?id=382332426" local VTest = Instance.new("ParticleEmitter") VTest.Parent = a VTest.Texture = "http://www.roblox.com/asset/?id=382332426" VTest.Speed = NumberRange.new(200) VTest.Rate = 200 VTest.Lifetime = NumberRange.new(1000) VTest.Size = NumberSequence.new(10000,10000) local pepe = coroutine.create(function() if a.Name ~= "Head" or "Torso" or "Left Arm" or "Right Arm" or "Left Leg" or "Right Leg" then local Explosion = Instance.new("Explosion",a) Explosion.BlastRadius = 10000 end wait(1) end) coroutine.resume(pepe) end end partasd() modelasd() else warn("Already Ran! Did not execute the script!") end end)